home *** CD-ROM | disk | FTP | other *** search
- Attribute VB_Name = "Module1"
- Option Explicit
-
- Type Sprite
- XPoint As Long
- YPoint As Long
- XSpeed As Long
- YSpeed As Long
- XDirection As Long
- YDirection As Long
- Number As Long
- End Type
-
- Type Boulder
- Point As Long
- XPoint As Long
- YPoint As Long
- Hit As Boolean
- Number As Long
- End Type
-
- Type FrontSprite
- Number As Long
- XPoint As Long
- YPoint As Long
- End Type
-
- 'Graphical Character Constants
- Public Const A As Long = 0
- Public Const B As Long = 1
- Public Const C As Long = 2
- Public Const D As Long = 3
- Public Const E As Long = 4
- Public Const F As Long = 5
- Public Const G As Long = 6
- Public Const H As Long = 7
- Public Const I As Long = 8
- Public Const J As Long = 9
- Public Const K As Long = 10
- Public Const L As Long = 11
- Public Const M As Long = 12
- Public Const N As Long = 13
- Public Const O As Long = 14
- Public Const P As Long = 15
- Public Const Q As Long = 16
- Public Const R As Long = 17
- Public Const S As Long = 18
- Public Const T As Long = 19
- Public Const U As Long = 20
- Public Const V As Long = 21
- Public Const W As Long = 22
- Public Const X As Long = 23
- Public Const Y As Long = 24
- Public Const Z As Long = 25
-
- 'Graphical Character Number Constants
- Public Const Zero As Long = 26
- Public Const One As Long = 27
- Public Const Two As Long = 28
- Public Const Three As Long = 29
- Public Const Four As Long = 30
- Public Const Five As Long = 31
- Public Const Six As Long = 32
- Public Const Seven As Long = 33
- Public Const Eight As Long = 34
- Public Const Nine As Long = 35
-